Vcenter Cluster FilterSpec
The Vcenter Cluster FilterSpec schema contains properties used to filter the results when listing clusters (see GET /vcenter/cluster). If multiple properties are specified, only clusters matching all of the properties match the filter.
{
"clusters": [
"string"
],
"names": [
"string"
],
"folders": [
"string"
],
"datacenters": [
"string"
]
}
Identifiers of clusters that can match the filter.
If missing or null
or empty, clusters with any identifier match the filter.
When clients pass a value of this schema as a parameter, the property must contain identifiers for the resource type: ClusterComputeResource
. When operations return a value of this schema as a response, the property will contain identifiers for the resource type: ClusterComputeResource
.
Names that clusters must have to match the filter (see Vcenter Cluster Info.name).
If missing or null
or empty, clusters with any name match the filter.
Folders that must contain the cluster for the cluster to match the filter.
If missing or null
or empty, clusters in any folder match the filter.
When clients pass a value of this schema as a parameter, the property must contain identifiers for the resource type: Folder
. When operations return a value of this schema as a response, the property will contain identifiers for the resource type: Folder
.
Datacenters that must contain the cluster for the cluster to match the filter.
If missing or null
or empty, clusters in any datacenter match the filter.
When clients pass a value of this schema as a parameter, the property must contain identifiers for the resource type: Datacenter
. When operations return a value of this schema as a response, the property will contain identifiers for the resource type: Datacenter
.